home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-09-08 | 901 b | 61 lines |
-
-
-
- !include ..\control\msvcpp.ctl
-
- LIBRARY = $(IO)
- LIBRARYP = $(YACLLIB)\$(LIBRARY)
-
-
- # ------------------------ Names of files --------------------------
-
-
- # OBJECTS = binfile.obj bytstore.obj directry.obj dskbtree.obj \
- # pathname.obj slotfile.obj
-
- # directry.obj not yet supported under MSVC++, because it doesn't have the
- # POSIX API
- OBJECTS = binfile.obj bytstore.obj dskbtree.obj \
- pathname.obj slotfile.obj
-
-
- # ---------------------- Compilation rules -----------------------
-
-
- .SUFFIXES:
- .SUFFIXES: .cxx .obj
-
-
- TARGET = $(LIBRARYP).lib
-
-
- .cxx.obj:
- $(CC) $(DEBUG) $(CCOPTS) $<
-
-
-
- all: $(TARGET)
-
-
-
- $(LIBRARYP).lib: $(OBJECTS) $(STATIC_OBJS)
- $(LIBR) /out:$(TARGET) $(OBJECTS) $(STATIC_OBJS)
- -$(DELETE) $(LIBRARYP).bak
-
-
- # ------------------ Other targets ---------------------------
-
-
-
-
- clean:
- -del *.obj
- -del $(LIBRARYP).lib
- -del $(LIBRARYP).bak
-
-
-
-
-
-
-